home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************************
- * *
- * File Name: ARTICLE4.C *
- * Description: Move a couple of big images over a complex background *
- * Notes: Feel free to change the program to load any 320x200 *
- * 256 colour picture, the images will work just as *
- * nicely (see the warning about palettes, though). *
- * *
- * Warning: Once you start to use images and/or sprites over pre- *
- * saved PCX pictures, you run into a problem: the *
- * palette used for the picture must be the same as the *
- * palette used to create the images, otherwise your *
- * sprites look damn peculiar. Unfortunately, there's *
- * no way around this, and it requires some discipline *
- * when you create things in the first place. *
- * *
- * As of this month, there'll be three files included on *
- * the disk:- *
- * HIGHC.OBJ All the functions we've developed so far *
- * HIGHC.C The source to them *
- * HIGHC.H A header file for structures and soforth *
- * *
- * You MUST tell your compiler/linker to include *
- * HIGHC.OBJ at link time, otherwise it won't be able to *
- * find all the "basic" functions like g_SetVGA. *
- * *
- ***************************************************************************/
-
- #include "highc.h" // From now on, include this in every program
- #include "alloc.h"
- #include "stdlib.h"
- #include "stdio.h"
- #include "string.h"
-
- #define NO_FILE -1
- #define NOT_KNOWN -2
- #define PCX 1 // Just to make it read a bit nicer
-
- typedef struct {
- char far *ptr;
- int h, w;
- int t, l;
- char far *sptr;
- } IMAGE_DEFN;
-
- IMAGE_DEFN img[30];
-
- main()
- {
-
- signed char x;
- unsigned char w, h, contin;
- char signature[25];
- int j, k;
-
- sbptr = farcalloc(64000, 1); // Allocate the screen buffer
- palette = farcalloc(768, 1); // Allocate the palette space
-
- g_SetVGA();
- x=g_LoadScreen("article4.pcx"); // You can change this to any 320x200,
- // 256-colour picture you like.
-
- if (x != PCX)
- {
- g_SetTxt();
- printf("Error! Non-existent or non-PCX file ARTICLE4.PCX");
- exit(0);
- }
-
-
- load_img("malcolm.im", 0); // This image bank contains two images - Malcolm
- // the Void heading east, and the same fellow
- // heading west. Next month, Malcolm walks!
-
- pasteimg(0, 5, 60); // I've offset them slightly so you can see
- pasteimg(1, 300, 70); // that image 1 appears to pass over the top of
- // image 0 when they cross.
-
- /* These pictures of Malcolm were originally drawn on an Amiga with a
- slightly higher y-resolution than the PC, hence the "stretched" look.
- Interestingly, when Sarah created these images she accidentally used
- colour 0 as a black in several places, especially around Malcolm's boots.
- I have left this error in so you can see how the image system treats ALL
- occurences of colour 0 as see-through. It's quite a nice effect,
- actually... */
-
- for (j=1; j<250; j++) // Feel free to mess about with this loop to
- { // your heart's content. If you make j increment
- // by 2, 3 or even 4 each time, the movement will
- // still be acceptably smooth.
- removeimg(1);
- removeimg(0); // ALWAYS remove images in the opposite order to
- // the order you placed them in.
- pasteimg(0, 5+j, 60);
- pasteimg(1, 300-j, 70);
- g_SwapScr();
- }
-
- getch();
-
- g_SetTxt();
-
- return(OK);
- }
-
- pasteimg(char imgnum, int l, int t)
-
- {
-
- unsigned int j, k, h, w, m, n;
- char far *sp1;
- char far *sp2;
-
- if (imgnum < 0 || imgnum > 30) // We're only allowing 30 images at one time
- return(-1); // (could easily be increased)
-
- if (l < 0 || t < 0 || l > 319 || t > 199)
- return(-2); // Don't paste an image off the edge of
- // the screen.
-
- if ( (sp2 = img[imgnum].ptr) == NULL)
- return(-3); // The requested image has no image data
-
- w = img[imgnum].w;
- h = img[imgnum].h;
-
- if (img[imgnum].sptr != NULL) // If, for some reason, the background is
- farfree(img[imgnum].sptr); // already saved, throw it away
-
- if ( (img[imgnum].sptr = farcalloc(w*h, 1)) == NULL)
- return(-4); // Not enough memory to save background
-
- save_IMG_back(imgnum, l, t);
-
- m = 0;
-
- for (j = 0; j < h; j++)
- {
- if (j+t < 200)
- {
- sp1 = g_FPtr(sbptr, (t * 320) + (j * 320) + l);
- n = 0;
- for (k = 0; k < w; k++)
- {
- if (sp2[m] != 0 && k+l < 320)
- sp1[n] = sp2[m];
- n++; m++;
- }
- }
- }
-
- img[imgnum].t = t;
- img[imgnum].l = l;
-
- return(OK);
-
- }
-
-
- save_IMG_back(imgnum, l, t)
-
- int l, t;
- char imgnum;
-
- {
-
- unsigned int j, k, w, h, n, m;
- char far *sp1;
- char far *sp2;
-
- sp2 = img[imgnum].sptr;
- w = img[imgnum].w;
- h = img[imgnum].h;
- m = 0;
-
- for (j = 0; j < h; j++)
- {
- sp1 = g_FPtr(sbptr, (t * 320) + (j * 320) + l);
- n = 0;
- for (k = 0; k < w; k++)
- sp2[m++] = sp1[n++];
- }
-
- return(OK);
-
- }
-
-
- removeimg(imgnum)
- char imgnum;
-
- {
-
- unsigned int j, k, n, t, l, w, h, m;
- char far *sp1;
- char far *sp2;
-
- if (img[imgnum].sptr == NULL)
- return(-1); // Image is not on screen
-
- sp2 = img[imgnum].sptr;
- t = img[imgnum].t;
- l = img[imgnum].l;
- w = img[imgnum].w;
- h = img[imgnum].h;
-
- m = 0;
-
-
- for (j = 0; j < h; j++)
- {
- if (j+t < 200)
- {
- sp1 = g_FPtr(sbptr, (t * 320) + (j * 320) + l);
- n = 0;
- for (k = 0; k < w; k++)
- {
- if (k+l < 320)
- sp1[n] = sp2[m];
- n++; m++;
- }
- }
- }
-
- farfree(img[imgnum].sptr);
- img[imgnum].sptr = 0;
-
- return(OK);
-
- }
-
-
- load_img(char *filnam, char append)
- {
-
- int j, k, w, h;
- FILE *fp;
- char far *t;
- char sig[21];
-
- if ( (fp = fopen(filnam, "rb")) == NULL)
- return(NO_FILE);
-
- if (append)
- {
- for (j=0; j<50; j++)
- if (img[j].ptr == NULL)
- break;
- }
- else
- j=0;
-
- fread(sig, 1, 10, fp);
- sig[10] = 0;
-
- if ( strcmp("Image File", sig) != NULL)
- return(NOT_KNOWN);
-
- while (!feof(fp) && j < 50)
- {
- if (fgetc(fp) != 255)
- break;
-
- w = (int)fgetc(fp);
- h = (int)fgetc(fp);
-
- t = farcalloc(w*h, 1);
-
- fread(t, 1, w*h, fp);
-
- img[j].ptr = t;
- img[j].w = w;
- img[j++].h = h;
- }
-
- while (j++ < 50)
- {
- img[j].ptr = NULL;
- img[j].w = 0;
- img[j].h = 0;
- }
-
-
-
- return(OK);
-
- }